home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / bigarr / time2win.bas < prev    next >
Encoding:
BASIC Source File  |  1995-01-10  |  45.3 KB  |  648 lines

  1. Option Explicit
  2.  
  3. Global Const GET_TIME_SEPARATOR = 1
  4. Global Const GET_DATE_SEPARATOR = 2
  5. Global Const GET_TIME_FORMAT = 3
  6. Global Const GET_DATE_FORMAT = 4
  7. Global Const GET_CURRENCY = 5
  8. Global Const GET_LANGUAGE = 6
  9. Global Const GET_COUNTRY = 7
  10. Global Const GET_COUNTRY_CODE = 8
  11. Global Const GET_LIST_SEPARATOR = 9
  12. Global Const GET_DEFAULT_PRINTER = 10
  13.  
  14. Global Const DRIVE_UNKNOW = 0
  15. Global Const DRIVE_REMOVABLE = 2
  16. Global Const DRIVE_FIXED = 3
  17. Global Const DRIVE_REMOTE = 4
  18. Global Const DRIVE_CDROM = 20
  19.  
  20. Global Const A_NORMAL = &H0             'Normal file - No read/write restrictions
  21. Global Const A_RDONLY = &H1             'Read only file
  22. Global Const A_HIDDEN = &H2             'Hidden file
  23. Global Const A_SYSTEM = &H4             'System file
  24. Global Const A_VOLID = &H8              'Volume ID file
  25. Global Const A_SUBDIR = &H10            'Subdirectory
  26. Global Const A_ARCH = &H20              'Archive file
  27.  
  28. Global Const ENCRYPT_LEVEL_0 = 0
  29. Global Const ENCRYPT_LEVEL_1 = 1
  30. Global Const ENCRYPT_LEVEL_2 = 2
  31. Global Const ENCRYPT_LEVEL_3 = 3
  32.  
  33. Global Const OPEN_MODE_BINARY = 0
  34. Global Const OPEN_MODE_TEXT = 1
  35.  
  36. Global Const BIG_ADD = 0
  37. Global Const BIG_SUB = 1
  38. Global Const BIG_MUL = 2
  39.  
  40. Global Const VER_VERSION_PRODUCT = -1
  41. Global Const VER_VERSION_FILE = 0
  42. Global Const VER_COMPANY_NAME = 1
  43. Global Const VER_FILE_DESCRIPTION = 2
  44. Global Const VER_FILE_VERSION = 3
  45. Global Const VER_INTERNAL_NAME = 4
  46. Global Const VER_LEGAL_COPYRIGHT = 5
  47. Global Const VER_LEGAL_TRADEMARKS = 6
  48. Global Const VER_PRODUCT_NAME = 7
  49. Global Const VER_PRODUCT_VERSION = 8
  50.  
  51. Global Const LNG_FRENCH = 1
  52. Global Const LNG_DUTCH = 2
  53. Global Const LNG_GERMAN = 3
  54. Global Const LNG_ENGLISH = 4
  55. Global Const LNG_ITALIAN = 5
  56. Global Const LNG_SPANISH = 6
  57.  
  58. Global Const MB_MESSAGE_LEFT = 0
  59. Global Const MB_MESSAGE_CENTER = 8192
  60. Global Const MB_MESSAGE_RIGHT = 16384
  61.  
  62. Global Const MB_TIMEOUT_2 = 32768
  63. Global Const MB_TIMEOUT_4 = 2 * MB_TIMEOUT_2
  64. Global Const MB_TIMEOUT_8 = 2 * MB_TIMEOUT_4
  65. Global Const MB_TIMEOUT_16 = 2 * MB_TIMEOUT_8
  66.  
  67. Global Const MB_TIMEOUT_6 = MB_TIMEOUT_2 Or MB_TIMEOUT_4
  68. Global Const MB_TIMEOUT_10 = MB_TIMEOUT_2 Or MB_TIMEOUT_8
  69. Global Const MB_TIMEOUT_12 = MB_TIMEOUT_4 Or MB_TIMEOUT_8
  70. Global Const MB_TIMEOUT_14 = MB_TIMEOUT_2 Or MB_TIMEOUT_4 Or MB_TIMEOUT_8
  71. Global Const MB_TIMEOUT_18 = MB_TIMEOUT_2 Or MB_TIMEOUT_16
  72. Global Const MB_TIMEOUT_20 = MB_TIMEOUT_4 Or MB_TIMEOUT_16
  73. Global Const MB_TIMEOUT_22 = MB_TIMEOUT_2 Or MB_TIMEOUT_4 Or MB_TIMEOUT_16
  74. Global Const MB_TIMEOUT_24 = MB_TIMEOUT_8 Or MB_TIMEOUT_16
  75. Global Const MB_TIMEOUT_26 = MB_TIMEOUT_2 Or MB_TIMEOUT_8 Or MB_TIMEOUT_16
  76. Global Const MB_TIMEOUT_28 = MB_TIMEOUT_4 Or MB_TIMEOUT_8 Or MB_TIMEOUT_16
  77. Global Const MB_TIMEOUT_30 = MB_TIMEOUT_2 Or MB_TIMEOUT_4 Or MB_TIMEOUT_8 Or MB_TIMEOUT_16
  78.  
  79. Global Const MB_DISPLAY_TIMEOUT = 524288
  80.  
  81. Global Const RS_CAPTION = 1
  82. Global Const RS_TEXT = 2
  83. Global Const RS_DATAFIELD = 4
  84. Global Const RS_DATASOURCE = 8
  85.  
  86. Global Const MATCH_HEXA = 17
  87. Global Const MATCH_INTERNAL_ERROR = 16
  88. Global Const MATCH_PATTERN = 15
  89. Global Const MATCH_LITERAL = 14
  90. Global Const MATCH_RANGE = 13
  91. Global Const MATCH_ABORT = 12
  92. Global Const MATCH_END = 11
  93. Global Const MATCH_VALID = -1
  94.  
  95. Global Const PATTERN_VALID = 0
  96. Global Const PATTERN_INVALID = 1
  97. Global Const PATTERN_ESC = 2
  98. Global Const PATTERN_RANGE = 3
  99. Global Const PATTERN_CLOSE = 4
  100. Global Const PATTERN_EMPTY = 5
  101. Global Const PATTERN_INTERNAL_ERROR = 6
  102. Global Const PATTERN_HEXA = 7
  103.  
  104. Global Const IFV_ERROR = 0
  105. Global Const IFV_NAME_TOO_LONG = 1
  106. Global Const IFV_EXT_TOO_LONG = 2
  107. Global Const IFV_TOO_MANY_BACKSLASH = 3
  108. Global Const IFV_BAD_DRIVE_LETTER = 4
  109. Global Const IFV_BAD_COLON_POS = 5
  110. Global Const IFV_EXT_WITHOUT_NAME = 6
  111.  
  112. Global Const DA_BYTE = 1
  113. Global Const DA_TYPE = 0
  114. Global Const DA_INTEGER = -2
  115. Global Const DA_LONG = -3
  116. Global Const DA_SINGLE = -4
  117. Global Const DA_DOUBLE = -5
  118. Global Const DA_CURRENCY = -6
  119.  
  120. Global Const DA_NO_ERROR = True
  121. Global Const DA_EMPTY_FILENAME = 1
  122. Global Const DA_BAD_FILENAME = 2
  123. Global Const DA_CAN_KILL_FILE = 3
  124. Global Const DA_CAN_NOT_OPEN_FILE = 4
  125. Global Const DA_FILE_NOT_FOUND = 5
  126. Global Const DA_BAD_TYPE = 6
  127. Global Const DA_BAD_ROWS = 7
  128. Global Const DA_BAD_COLS = 8
  129. Global Const DA_BAD_SHEETS = 9
  130. Global Const DA_CAN_NOT_WRITE_HEADER = 10
  131. Global Const DA_CAN_NOT_WRITE_PART = 11
  132. Global Const DA_CAN_NOT_WRITE_REMAIN = 12
  133. Global Const DA_CAN_NOT_READ_HEADER = 13
  134. Global Const DA_HEADER_SIZE = 14
  135. Global Const DA_BAD_SIGNATURE = 15
  136. Global Const DA_FILE_SIZE_MISMATCH = 16
  137. Global Const DA_CAN_NOT_SEEK = 17
  138. Global Const DA_INVALID_HANDLE = 18
  139.  
  140. Type tagSPLITPATH
  141.    nDrive            As String
  142.    nDir              As String
  143.    nName             As String
  144.    nExt              As String
  145. End Type
  146.  
  147. Type tagFILEVERSIONINFO
  148.    VersionProduct    As String
  149.    VersionFile       As String
  150.    CompanyName       As String
  151.    FileDescription   As String
  152.    FileVersion       As String
  153.    InternalName      As String
  154.    LegalCopyright    As String
  155.    LegalTrademarks   As String
  156.    Comments          As String
  157.    ProductName       As String
  158.    ProductVersion    As String
  159. End Type
  160.  
  161. Type FileAttributeType
  162.    ErrNo             As Integer
  163.    Archive           As Integer
  164.    Hidden            As Integer
  165.    Normal            As Integer
  166.    ReadOnly          As Integer
  167.    SubDir            As Integer
  168.    System            As Integer
  169.    VolId             As Integer
  170. End Type
  171.  
  172. Type ArrayType
  173.    Bounds            As Long
  174.    LBound            As Integer
  175.    UBound            As Integer
  176.    ElemSize          As Integer
  177.    IndexCount        As Integer
  178.    TotalElem         As Integer
  179. End Type
  180.  
  181. Type tagMODULEENTRY
  182.    dwSize            As Long
  183.    szModule          As String * 10
  184.    hModule           As Integer
  185.    wcUsage           As Integer
  186.    szExePath         As String * 256
  187.    wNext             As Integer
  188. End Type
  189.  
  190. Type tagTASKENTRY
  191.    dwSize            As Long
  192.    hTask             As Integer
  193.    hTaskParent       As Integer
  194.    hInst             As Integer
  195.    hModule           As Integer
  196.    wSS               As Integer
  197.    wSP               As Integer
  198.    wStackTop         As Integer
  199.    wStackMinimum     As Integer
  200.    wStackBottom      As Integer
  201.    wcEvents          As Integer
  202.    hQueue            As Integer
  203.    szModule          As String * 10
  204.    wPSPOffset        As Integer
  205.    hNext             As Integer
  206. End Type
  207.  
  208. Type tagDISKARRAY
  209.    daSize            As Integer           'size of the type'd
  210.    Signature         As String * 7        'signature
  211.    nFilename         As String * 64       'name of the file
  212.    nType             As Integer           'variable type
  213.    nRows             As Long              'number of rows
  214.    nCols             As Long              'number of cols
  215.    nSheets           As Long              'number of sheets
  216.    rHandle           As Integer           'returned handle for use with other functions
  217.    rElementSize      As Integer           'returned size of a element
  218.    rFileSize         As Long              'returned size of the file
  219.    rParts            As Long              'returned total part
  220.    rRemain           As Long              'returned size of the remain part
  221.    rSheetSize        As Long              'size of a sheet
  222.    rOffset1          As Long              'returned offset 1
  223.    rOffset2          As Long              'returned offset 2
  224.    rTime             As Long              'time for the last correct transaction
  225.    nIsTyped          As Integer           'is nType a type'd variable
  226.    dummy             As String * 7        'reserved for future use
  227. End Type
  228.  
  229. Rem Don't Remove It
  230. Declare Function cAddD Lib "time2win.dll" (array() As Double, ByVal nValue As Double) As Integer
  231. Declare Function cAddDigit Lib "time2win.dll" (Txt As String) As Integer
  232. Declare Function cAddI Lib "time2win.dll" (array() As Integer, ByVal nValue As Integer) As Integer
  233. Declare Function cAddL Lib "time2win.dll" (array() As Long, ByVal nValue As Long) As Integer
  234. Declare Function cAddS Lib "time2win.dll" (array() As Single, ByVal nValue As Single) As Integer
  235. Declare Function cAddTime Lib "time2win.dll" (ByVal Hr As Integer) As Integer
  236. Declare Function cAllSubDirectories Lib "time2win.dll" (ByVal lpBaseDirectory As String, nDir As Integer) As String
  237. Declare Function cArabicToRoman Lib "time2win.dll" (Var As Variant) As String
  238. Declare Function cArrayPrm Lib "time2win.dll" (array() As Any, nArray As Any) As Integer
  239. Declare Function cBaseConversion Lib "time2win.dll" (ByVal Num As String, ByVal RadixIn As Integer, ByVal RadixOut As Integer) As String
  240. Declare Function cBetween Lib "time2win.dll" (Var As Variant, Var1 As Variant, Var2 As Variant) As Integer
  241. Declare Function cBigNum Lib "time2win.dll" (ByVal n1 As String, ByVal op As Integer, ByVal n2 As String) As String
  242. Declare Function cBigAdd Lib "time2win.dll" (Num1 As String, Num2 As String) As String
  243. Declare Function cBigDiv Lib "time2win.dll" (Num1 As String, Num2 As String) As String
  244. Declare Function cBigMul Lib "time2win.dll" (Num1 As String, Num2 As String) As String
  245. Declare Function cBigNum Lib "time2win.dll" (ByVal n1 As String, ByVal op As Integer, ByVal n2 As String) As String
  246. Declare Function cBigSub Lib "time2win.dll" (Num1 As String, Num2 As String) As String
  247. Declare Function cBigFmt Lib "time2win.dll" (Num As String, ByVal Length As Integer) As String
  248. Declare Function cBlockCharFromLeft Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As String
  249. Declare Function cBlockCharFromRight Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As String
  250. Declare Sub cChangeChars Lib "time2win.dll" (Txt As String, charSet As String, newCharSet As String)
  251. Declare Sub cChangeCharsUntil Lib "time2win.dll" (Txt As String, charSet As String, newCharSet As String, nUntil As String)
  252. Declare Sub cChangeTaskName Lib "time2win.dll" (ByVal hWnd As Integer, ByVal text As String)
  253. Declare Function cChDir Lib "time2win.dll" (ByVal lpDir As String) As Integer
  254. Declare Function cChDrive Lib "time2win.dll" (ByVal lpDrive As String) As Integer
  255. Declare Function cCheckChars Lib "time2win.dll" (Txt As String, charSet As String) As Integer
  256. Declare Function cCheckLocking Lib "time2win.dll" () As Integer
  257. Declare Function cCheckMinuteChange Lib "time2win.dll" () As Integer
  258. Declare Function cCheckNumericity Lib "time2win.dll" (Txt As String) As Integer
  259. Declare Function cCheckSecondChange Lib "time2win.dll" () As Integer
  260. Declare Function cCheckStatus Lib "time2win.dll" (Ctl As Control) As Integer
  261. Declare Function cCheckTime Lib "time2win.dll" (ByVal Hr As Integer, ByVal Hr1 As Integer, ByVal Hr2 As Integer) As Integer
  262. Declare Function cCheckWait Lib "time2win.dll" (ByVal nTimer As Integer) As Integer
  263. Declare Function cCmpFileAttribute Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String) As Integer
  264. Declare Function cCmpFileContents Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, ByVal sensitivity As Integer) As Integer
  265. Declare Function cCmpFileSize Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String) As Integer
  266. Declare Function cCmpFileTime Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String) As Integer
  267. Declare Function cCompact Lib "time2win.dll" (Txt As String) As String
  268. Declare Function cCompareTypeString Lib "time2win.dll" Alias "cTypesCompare" (TypeSrc As Any, ByVal Dst As String, ByVal lenTypeSrc As Integer) As Integer
  269. Declare Function cCompareStringType Lib "time2win.dll" Alias "cTypesCompare" (ByVal Src As String, TypeDst As Any, ByVal lenTypeSrc As Integer) As Integer
  270. Declare Function cCompress Lib "time2win.dll" (Txt As String) As String
  271. Declare Function cCompressTab Lib "time2win.dll" (Txt As String, ByVal nTab As Integer) As String
  272. Declare Function cConvert Lib "time2win.dll" (Value As String, ByVal MaskFrom As String, ByVal MaskTo As String, ByVal Size As Integer) As String
  273. Declare Function cCount Lib "time2win.dll" (Txt As String, Separator As String) As Integer
  274. Declare Function cCountDirectories Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  275. Declare Function cCountFiles Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  276. Declare Function cCplAlpha Lib "time2win.dll" (Txt As String) As String
  277. Declare Function cCplDigit Lib "time2win.dll" (Txt As String) As String
  278. Declare Function cCreateAndFill Lib "time2win.dll" (ByVal Length As Integer, Txt As String) As String
  279. Declare Function cCreateBits Lib "time2win.dll" (ByVal nBits As Integer) As String
  280. Declare Function cCurrentTime Lib "time2win.dll" () As Integer
  281. Declare Function cCVB Lib "time2win.dll" (Value As String) As Integer
  282. Declare Function cCVC Lib "time2win.dll" (Value As String) As Currency
  283. Declare Function cCVD Lib "time2win.dll" (Value As String) As Double
  284. Declare Function cCVI Lib "time2win.dll" (Value As String) As Integer
  285. Declare Function cCVL Lib "time2win.dll" (Value As String) As Long
  286. Declare Function cCVS Lib "time2win.dll" (Value As String) As Single
  287. Declare Function cDAClear Lib "time2win.dll" (DISKARRAY As tagDISKARRAY) As Integer
  288. Declare Function cDAClearCol Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Col As Long, ByVal Sheet As Long) As Integer
  289. Declare Function cDAClearRow Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Sheet As Long) As Integer
  290. Declare Function cDAClearSheet Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Sheet As Long) As Integer
  291. Declare Sub cDAClose Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal DeleteFile As Integer)
  292. Declare Function cDACreate Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal CreateOrUse As Integer) As Integer
  293. Declare Function cDAGet Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, ByVal Sheet As Long) As Variant
  294. Declare Sub cDAGetType Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, ByVal Sheet As Long, nType As Any)
  295. Declare Sub cDAPut Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, ByVal Sheet As Long, Var As Variant)
  296. Declare Sub cDAPutType Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, ByVal Sheet As Long, nType As Any)
  297. Declare Sub cDArGet Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Col As Long, Var As Variant)
  298. Declare Sub cDArGetType Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Col As Long, nType As Any)
  299. Declare Sub cDArPut Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Col As Long, Var As Variant)
  300. Declare Sub cDArPutType Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Col As Long, nType As Any)
  301. Declare Function cDAsClearCol Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Col As Long) As Integer
  302. Declare Function cDAsClearRow Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long) As Integer
  303. Declare Sub cDAsGet Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, Var As Variant)
  304. Declare Sub cDAsGetType Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, nType As Any)
  305. Declare Sub cDAsPut Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, Var As Variant)
  306. Declare Sub cDAsPutType Lib "time2win.dll" (DISKARRAY As tagDISKARRAY, ByVal Row As Long, ByVal Col As Long, nType As Any)
  307. Declare Function cDaysInMonth Lib "time2win.dll" (ByVal nYear As Integer, ByVal nMonth As Integer) As Integer
  308. Declare Function cDecrypt Lib "time2win.dll" (Txt As String, password As String, ByVal level As Integer) As String
  309. Declare Function cDeviationD Lib "time2win.dll" (array() As Double) As Double
  310. Declare Function cDeviationI Lib "time2win.dll" (array() As Integer) As Double
  311. Declare Function cDeviationL Lib "time2win.dll" (array() As Long) As Double
  312. Declare Function cDeviationS Lib "time2win.dll" (array() As Single) As Double
  313. Declare Sub cDisableCtlRedraw Lib "time2win.dll" (Ctl As Control)
  314. Declare Sub cDisableFI Lib "time2win.dll" (Ctl As Control)
  315. Declare Sub cDisableForm Lib "time2win.dll" (ByVal hWnd As Integer)
  316. Declare Sub cDisableRedraw Lib "time2win.dll" (ByVal hWnd As Integer)
  317. Declare Sub cEnableCtlRedraw Lib "time2win.dll" (Ctl As Control)
  318. Declare Sub cEnableFI Lib "time2win.dll" (Ctl As Control)
  319. Declare Sub cEnableForm Lib "time2win.dll" (ByVal hWnd As Integer)
  320. Declare Sub cEnableRedraw Lib "time2win.dll" (ByVal hWnd As Integer)
  321. Declare Function cEncrypt Lib "time2win.dll" (Txt As String, password As String, ByVal level As Integer) As String
  322. Declare Function cExitWindowsAndExecute Lib "time2win.dll" (ByVal lpszExe As String, ByVal lpszParams As String) As Integer
  323. Declare Function cExpandTab Lib "time2win.dll" (Txt As String, ByVal nTab As Integer) As String
  324. Declare Function cEXEnameActiveWindow Lib "time2win.dll" () As String
  325. Declare Function cEXEnameWindow Lib "time2win.dll" (ByVal hModule As Integer) As String
  326. Declare Function cEXENameTask Lib "time2win.dll" (ByVal nFilename As String) As String
  327. Declare Function cFileCompressTab Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, ByVal nTab As Integer) As Long
  328. Declare Function cFileCopy Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String) As Long
  329. Declare Function cFileCRC32 Lib "time2win.dll" (ByVal lpFilename As String, ByVal mode As Integer) As Long
  330. Declare Function cFileDateCreated Lib "time2win.dll" (ByVal lpFilename As String) As String
  331. Declare Function cFileDecrypt Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, password As String, ByVal level As Integer) As Long
  332. Declare Function cFileDrive Lib "time2win.dll" (ByVal lpFilename As String) As String
  333. Declare Function cFileEncrypt Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, password As String, ByVal level As Integer) As Long
  334. Declare Function cFileExpandTab Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, ByVal nTab As Integer) As Long
  335. Declare Function cFileFilter Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, Filter As String) As Long
  336. Declare Function cFileFilterNot Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, Filter As String) As Long
  337. Declare Function cFileGetAttrib Lib "time2win.dll" (ByVal nFilename As String, nFileAttribute As Any) As Integer
  338. Declare Function cFileLastDateAccess Lib "time2win.dll" (ByVal lpFilename As String) As String
  339. Declare Function cFileLastDateModified Lib "time2win.dll" (ByVal lpFilename As String) As String
  340. Declare Function cFileLastTimeAccess Lib "time2win.dll" (ByVal lpFilename As String) As String
  341. Declare Function cFileLastTimeModified Lib "time2win.dll" (ByVal lpFilename As String) As String
  342. Declare Function cFileLineCount Lib "time2win.dll" (ByVal lpFilename As String) As Long
  343. Declare Function cFileMerge Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String, ByVal fileTo As String) As Long
  344. Declare Function cFilePathExists Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  345. Declare Function cFileResetAllAttrib Lib "time2win.dll" (ByVal nFilename As String) As Integer
  346. Declare Function cFileResetArchive Lib "time2win.dll" (ByVal nFilename As String) As Integer
  347. Declare Function cFileResetFlag Lib "time2win.dll" (ByVal nFilename As String, ByVal nStatus As Integer) As Integer
  348. Declare Function cFileResetHidden Lib "time2win.dll" (ByVal nFilename As String) As Integer
  349. Declare Function cFileResetReadOnly Lib "time2win.dll" (ByVal nFilename As String) As Integer
  350. Declare Function cFileResetSystem Lib "time2win.dll" (ByVal nFilename As String) As Integer
  351. Declare Function cFileSearch Lib "time2win.dll" (ByVal nFilename As String, ByVal Search As String, ByVal sensitivity As Integer) As Long
  352. Declare Function cFileSearchAndReplace Lib "time2win.dll" (ByVal nFilename As String, ByVal Search As String, ByVal Replace As String, ByVal nFileTemp As String, ByVal sensitivity As Integer) As Long
  353. Declare Function cFileSearchCount Lib "time2win.dll" (ByVal nFilename As String, ByVal Search As String, ByVal sensitivity As Integer) As Long
  354. Declare Function cFileSetAllAttrib Lib "time2win.dll" (ByVal nFilename As String) As Integer
  355. Declare Function cFileSetArchive Lib "time2win.dll" (ByVal nFilename As String) As Integer
  356. Declare Function cFileSetAttrib Lib "time2win.dll" (ByVal nFilename As String, nFileAttribute As Any) As Integer
  357. Declare Function cFileSetFlag Lib "time2win.dll" (ByVal nFilename As String, ByVal nStatus As Integer) As Integer
  358. Declare Function cFileSetHidden Lib "time2win.dll" (ByVal nFilename As String) As Integer
  359. Declare Function cFileSetReadOnly Lib "time2win.dll" (ByVal nFilename As String) As Integer
  360. Declare Function cFileSetSystem Lib "time2win.dll" (ByVal nFilename As String) As Integer
  361. Declare Function cFilesInDirectory Lib "time2win.dll" (ByVal nFilename As String, ByVal firstnext As Integer) As String
  362. Declare Function cFileSize Lib "time2win.dll" (ByVal lpFilename As String) As Long
  363. Declare Function cFilesSize Lib "time2win.dll" (ByVal nFilename As String) As Long
  364. Declare Function cFilesSizeOnDisk Lib "time2win.dll" (ByVal nFilename As String) As Long
  365. Declare Function cFilesSlack Lib "time2win.dll" (ByVal nFilename As String, Size1 As Long, Size2 As Long) As Integer
  366. Declare Function cFileStatistics Lib "time2win.dll" (ByVal nFilename As String, nLines As Long, nWords As Long, nChars As Long) As Long
  367. Declare Function cFileTimeCreated Lib "time2win.dll" (ByVal lpFilename As String) As String
  368. Declare Function cFileToUpper Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String) As Long
  369. Declare Function cFileToLower Lib "time2win.dll" (ByVal file1 As String, ByVal file2 As String) As Long
  370. Declare Sub cFill Lib "time2win.dll" (Txt As String, Fill As String)
  371. Declare Function cFillD Lib "time2win.dll" (array() As Double, ByVal nValue As Double) As Integer
  372. Declare Function cFillI Lib "time2win.dll" (array() As Integer, ByVal nValue As Integer) As Integer
  373. Declare Function cFillL Lib "time2win.dll" (array() As Long, ByVal nValue As Long) As Integer
  374. Declare Function cFillS Lib "time2win.dll" (array() As Single, ByVal nValue As Single) As Integer
  375. Declare Function cFilterBlocks Lib "time2win.dll" (Txt As String, Delimitor As String) As String
  376. Declare Function cFilterChars Lib "time2win.dll" (Txt As String, charSet As String) As String
  377. Declare Function cFilterFirstChars Lib "time2win.dll" (Txt As String, charSet As String) As String
  378. Declare Function cFilterNotChars Lib "time2win.dll" (Txt As String, charSet As String) As String
  379. Declare Function cFindBitReset Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As Integer
  380. Declare Function cFindBitSet Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As Integer
  381. Declare Function cFindFileInEnv Lib "time2win.dll" (ByVal lpFilename As String, ByVal lpEnv As String) As Integer
  382. Declare Function cFindFileInPath Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  383. Declare Function cFromBinary Lib "time2win.dll" (text As String) As String
  384. Declare Function cFromBinary2 Lib "time2win.dll" (text As String, Bin As String) As String
  385. Declare Function cFromHexa Lib "time2win.dll" (text As String) As String
  386. Declare Function cFullPath Lib "time2win.dll" (ByVal nFilename As String) As String
  387. Declare Function cGet Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As String
  388. Declare Function cGetAscTime Lib "time2win.dll" (ByVal nLanguage As Integer) As String
  389. Declare Function cGetBit Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As Integer
  390. Declare Function cGetBlock Lib "time2win.dll" (Txt As String, ByVal Position As Integer, ByVal Length As Integer) As String
  391. Declare Function cGetCaption Lib "time2win.dll" (ByVal hWnd As Integer) As String
  392. Declare Function cGetChangeTaskName Lib "time2win.dll" (ByVal hWnd As Integer, ByVal text As String) As String
  393. Declare Function cGetClass Lib "time2win.dll" (ByVal hWnd As Integer) As String
  394. Declare Function cGetClassName Lib "time2win.dll" (ByVal hWnd As Integer) As String
  395. Declare Function cGetContainer Lib "time2win.dll" (ByVal hWnd As Integer) As String
  396. Declare Function cGetCountry Lib "time2win.dll" () As String
  397. Declare Function cGetCountryCode Lib "time2win.dll" () As String
  398. Declare Function cGetCtlCaption Lib "time2win.dll" (Ctl As Control) As String
  399. Declare Function cGetCtlClass Lib "time2win.dll" (Ctl As Control) As String
  400. Declare Function cGetCtlContainer Lib "time2win.dll" (Ctl As Control) As String
  401. Declare Function cGetCtlDataField Lib "time2win.dll" (Ctl As Control) As String
  402. Declare Function cGetCtlForm Lib "time2win.dll" (Ctl As Control) As String
  403. Declare Function cGetCtlIndex Lib "time2win.dll" (Ctl As Control) As Integer
  404. Declare Function cGetCtlName Lib "time2win.dll" (Ctl As Control) As String
  405. Declare Function cGetCtlNameIndex Lib "time2win.dll" (Ctl As Control) As String
  406. Declare Function cGetCtlPropCaption Lib "time2win.dll" (Ctl As Control) As Integer
  407. Declare Function cGetCtlPropDataField Lib "time2win.dll" (Ctl As Control) As Integer
  408. Declare Function cGetCtlPropText Lib "time2win.dll" (Ctl As Control) As Integer
  409. Declare Function cGetCtlTag Lib "time2win.dll" (Ctl As Control) As String
  410. Declare Function cGetCtlTagSized Lib "time2win.dll" (Ctl As Control) As String
  411. Declare Function cGetCtlText Lib "time2win.dll" (Ctl As Control) As String
  412. Declare Function cGetCurrency Lib "time2win.dll" () As String
  413. Declare Function cGetCurrentDrive Lib "time2win.dll" () As String
  414. Declare Function cGetDataField Lib "time2win.dll" (ByVal hWnd As Integer) As String
  415. Declare Function cGetDateFormat Lib "time2win.dll" () As String
  416. Declare Function cGetDateSeparator Lib "time2win.dll" () As String
  417. Declare Function cGetDefaultCurrentDir Lib "time2win.dll" () As String
  418. Declare Function cGetDefaultPrinter Lib "time2win.dll" () As String
  419. Declare Function cGetDevices Lib "time2win.dll" () As String
  420. Declare Function cGetDiskClusterSize Lib "time2win.dll" (ByVal lpDrive As String) As Long
  421. Declare Function cGetDiskFree Lib "time2win.dll" (ByVal lpDrive As String) As Long
  422. Declare Function cGetDiskSpace Lib "time2win.dll" (ByVal lpDrive As String) As Long
  423. Declare Function cGetDiskUsed Lib "time2win.dll" (ByVal lpDrive As String) As Long
  424. Declare Function cGetDriveCurrentDir Lib "time2win.dll" (ByVal lpDrive As String) As String
  425. Declare Function cGetDriveType Lib "time2win.dll" (ByVal lpDrive As String) As Integer
  426. Declare Function cGetFileVersion Lib "time2win.dll" (ByVal FileName As String, ByVal nFonction As Integer) As String
  427. Declare Function cGetFileVersionInfo Lib "time2win.dll" (ByVal FileName As String, FILEVERSIONINFO As Any) As Integer
  428. Declare Function cGetForm Lib "time2win.dll" (ByVal hWnd As Integer) As String
  429. Declare Function cGetFullNameInEnv Lib "time2win.dll" (ByVal lpFilename As String, ByVal lpEnv As String) As String
  430. Declare Function cGetFullNameInPath Lib "time2win.dll" (ByVal lpFilename As String) As String
  431. Declare Function cGetHourFormat Lib "time2win.dll" () As String
  432. Declare Function cGetHwnd Lib "time2win.dll" (Ctl As Control) As Integer
  433. Declare Function cGetIn Lib "time2win.dll" (Txt As String, Separator As String, ByVal Position As Integer) As String
  434. Declare Function cGetIndex Lib "time2win.dll" (ByVal hWnd As Integer) As Integer
  435. Declare Function cGetIni Lib "time2win.dll" (ByVal AppName As String, ByVal szItem As String, ByVal szDefault As String, ByVal InitFile As String) As String
  436. Declare Function cGetLanguage Lib "time2win.dll" () As String
  437. Declare Function cGetListSeparator Lib "time2win.dll" () As String
  438. Declare Function cGetLongDay Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal nDay As Integer) As String
  439. Declare Function cGetLongMonth Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal nMonth As Integer) As String
  440. Declare Function cGetName Lib "time2win.dll" (ByVal hWnd As Integer) As String
  441. Declare Function cGetNameIndex Lib "time2win.dll" (ByVal hWnd As Integer) As String
  442. Declare Function cGetNetConnection Lib "time2win.dll" (ByVal lpDrive As String, ErrCode As Integer) As String
  443. Declare Function cGetPid Lib "time2win.dll" () As Integer
  444. Declare Function cGetPrinterPorts Lib "time2win.dll" () As String
  445. Declare Function cGetSectionItems Lib "time2win.dll" (ByVal Section As String, ByVal InitFile As String, nItems As Integer) As String
  446. Declare Function cGetShortDay Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal nDay As Integer) As String
  447. Declare Function cGetShortMonth Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal nMonth As Integer) As String
  448. Declare Function cGetSmallDay Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal nDay As Integer) As String
  449. Declare Function cGetSystemDirectory Lib "time2win.dll" () As String
  450. Declare Function cGetTaskName Lib "time2win.dll" (ByVal hWnd As Integer) As String
  451. Declare Function cGetText Lib "time2win.dll" (ByVal hWnd As Integer) As String
  452. Declare Function cGetTimeSeparator Lib "time2win.dll" () As String
  453. Declare Function cGetTinyDay Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal nDay As Integer) As String
  454. Declare Function cGetTinyMonth Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal nMonth As Integer) As String
  455. Declare Function cGetWindowsDirectory Lib "time2win.dll" () As String
  456. Declare Function cGetWinINI Lib "time2win.dll" (ByVal Info As Integer) As String
  457. Declare Function cGetWinSection Lib "time2win.dll" (ByVal Section As String) As String
  458. Declare Function cGiveBitPalindrome Lib "time2win.dll" () As String
  459. Declare Function cHourTo Lib "time2win.dll" (Txt As String) As Variant
  460. Declare Function cIfInStr Lib "time2win.dll" (Txt As String, Operator As String) As String
  461. Declare Function cInsertBlocks Lib "time2win.dll" (Txt As String, Insert As String) As String
  462. Declare Function cInsertBlocksBy Lib "time2win.dll" (Txt As String, Insert As String, Delimitor As String) As String
  463. Declare Function cInsertByMask Lib "time2win.dll" (Txt As String, Mask As String, Insert As String) As String
  464. Declare Function cInsertChars Lib "time2win.dll" (Txt As String, ByVal Position As Integer, Insert As String) As String
  465. Declare Function cIntoBalance Lib "time2win.dll" (Var As Variant) As String
  466. Declare Function cIntoBalanceFill Lib "time2win.dll" (Var As Variant) As String
  467. Declare Function cIntoDate Lib "time2win.dll" (ByVal nDate As Long) As String
  468. Declare Function cIntoDateFill Lib "time2win.dll" (ByVal nDate As Long) As String
  469. Declare Function cIntoDateNull Lib "time2win.dll" (ByVal nDate As Long) As String
  470. Declare Function cIntoFixHour Lib "time2win.dll" (Var As Variant, ByVal Length As Integer, ByVal fillZero As Integer, ByVal CentiΦme As Integer) As String
  471. Declare Function cIntoHour Lib "time2win.dll" (Var As Variant) As String
  472. Declare Function cIntoVarHour Lib "time2win.dll" (Var As Variant) As String
  473. Declare Function cIsAlnum Lib "time2win.dll" (Txt As String) As Integer
  474. Declare Function cIsAlpha Lib "time2win.dll" (Txt As String) As Integer
  475. Declare Function cIsAscii Lib "time2win.dll" (Txt As String) As Integer
  476. Declare Function cIsBalance Lib "time2win.dll" (ByVal nHour As Long, ByVal nMinute As Integer, ByVal nSecond As Integer) As Integer
  477. Declare Function cIsBitPalindrome Lib "time2win.dll" (Txt As String) As Integer
  478. Declare Function cIsCsym Lib "time2win.dll" (Txt As String) As Integer
  479. Declare Function cIsCsymf Lib "time2win.dll" (Txt As String) As Integer
  480. Declare Function cIsDate Lib "time2win.dll" (ByVal nYear As Integer, ByVal nMonth As Integer, ByVal nDay As Integer) As Integer
  481. Declare Function cIsDigit Lib "time2win.dll" (Txt As String) As Integer
  482. Declare Function cIsFileArchive Lib "time2win.dll" (ByVal nFilename As String) As Integer
  483. Declare Function cIsFileFlag Lib "time2win.dll" (ByVal nFilename As String, ByVal nStatus As Integer) As Integer
  484. Declare Function cIsFileHidden Lib "time2win.dll" (ByVal nFilename As String) As Integer
  485. Declare Function cIsFileNormal Lib "time2win.dll" (ByVal nFilename As String) As Integer
  486. Declare Function cIsFilenameValid Lib "time2win.dll" (ByVal nFilename As String) As Integer
  487. Declare Function cIsFileReadOnly Lib "time2win.dll" (ByVal nFilename As String) As Integer
  488. Declare Function cIsFileSubDir Lib "time2win.dll" (ByVal nFilename As String) As Integer
  489. Declare Function cIsFileSystem Lib "time2win.dll" (ByVal nFilename As String) As Integer
  490. Declare Function cIsFileVolId Lib "time2win.dll" (ByVal nFilename As String) As Integer
  491. Declare Function cIsFormEnabled Lib "time2win.dll" (ByVal hWnd As Integer) As Integer
  492. Declare Function cIsHour Lib "time2win.dll" (ByVal nHour As Integer, ByVal nMinute As Integer, ByVal nSecond As Integer) As Integer
  493. Declare Function cIsISBN Lib "time2win.dll" (Txt As String) As Integer
  494. Declare Function cIsLeapYear Lib "time2win.dll" (ByVal nYear As Integer) As Integer
  495. Declare Function cIsLower Lib "time2win.dll" (Txt As String) As Integer
  496. Declare Function cIsPalindrome Lib "time2win.dll" (Txt As String) As Integer
  497. Declare Function cIsPunct Lib "time2win.dll" (Txt As String) As Integer
  498. Declare Function cIsSpace Lib "time2win.dll" (Txt As String) As Integer
  499. Declare Function cIsUpper Lib "time2win.dll" (Txt As String) As Integer
  500. Declare Function cIsXDigit Lib "time2win.dll" (Txt As String) As Integer
  501. Declare Function cKillDir Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  502. Declare Function cKillDirFilesAll Lib "time2win.dll" (ByVal lpDir As String, ByVal lpMask As String) As Integer
  503. Declare Function cKillDirs Lib "time2win.dll" (ByVal lpDir As String, ByVal HeaderDirectory As Integer) As Integer
  504. Declare Function cKillFile Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  505. Declare Function cKillFileAll Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  506. Declare Function cKillFiles Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  507. Declare Function cKillFilesAll Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  508. Declare Sub cKillFocus Lib "time2win.dll" (ByVal hWnd As Integer)
  509. Declare Function cLngMsgBox Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal Message As String, ByVal Button As Long, ByVal Title As String) As Integer
  510. Declare Sub cLngBoxMsg Lib "time2win.dll" Alias "cLngMsgBox" (ByVal nLanguage As Integer, ByVal Message As String, ByVal Button As Long, ByVal Title As String)
  511. Declare Function cLngInpBox Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal Message As String, ByVal Title As String, ByVal Default As String) As String
  512. Declare Sub cLngSysMenu Lib "time2win.dll" (ByVal nLanguage As Integer, ByVal hWnd As Integer)
  513. Declare Function cLockEventI Lib "time2win.dll" (Ctl As Control) As Integer
  514. Declare Function cLrc Lib "time2win.dll" (Txt As String) As String
  515. Declare Function cMakeDir Lib "time2win.dll" (ByVal lpFilename As String) As Integer
  516. Declare Function cMakePath Lib "time2win.dll" (ByVal nDrive As String, ByVal nDir As String, ByVal nFilename As String, ByVal Ext As String) As String
  517. Declare Function cMax Lib "time2win.dll" (Var1 As Variant, Var2 As Variant) As Variant
  518. Declare Function cMaxD Lib "time2win.dll" (array() As Double) As Double
  519. Declare Function cMaxI Lib "time2win.dll" (array() As Integer) As Integer
  520. Declare Function cMaxL Lib "time2win.dll" (array() As Long) As Long
  521. Declare Function cMaxS Lib "time2win.dll" (array() As Single) As Single
  522. Declare Function cMeanD Lib "time2win.dll" (array() As Double) As Double
  523. Declare Function cMeanI Lib "time2win.dll" (array() As Integer) As Double
  524. Declare Function cMeanL Lib "time2win.dll" (array() As Long) As Double
  525. Declare Function cMeanS Lib "time2win.dll" (array() As Single) As Double
  526. Declare Function cMin Lib "time2win.dll" (Var1 As Variant, Var2 As Variant) As Variant
  527. Declare Function cMinD Lib "time2win.dll" (array() As Double) As Double
  528. Declare Function cMinI Lib "time2win.dll" (array() As Integer) As Integer
  529. Declare Function cMinL Lib "time2win.dll" (array() As Long) As Long
  530. Declare Function cMinS Lib "time2win.dll" (array() As Single) As Single
  531. Declare Function cMixChars Lib "time2win.dll" (Txt As String) As String
  532. Declare Function cMKB Lib "time2win.dll" (ByVal Value As Integer) As String
  533. Declare Function cMKC Lib "time2win.dll" (ByVal Value As Currency) As String
  534. Declare Function cMKD Lib "time2win.dll" (ByVal Value As Double) As String
  535. Declare Function cMKI Lib "time2win.dll" (ByVal Value As Integer) As String
  536. Declare Function cMKL Lib "time2win.dll" (ByVal Value As Long) As String
  537. Declare Function cMKN Lib "time2win.dll" (ByVal Value As String) As String
  538. Declare Function cMKS Lib "time2win.dll" (ByVal Value As Single) As String
  539. Declare Function cModuleFind Lib "time2win.dll" (MODULEENTRY As Any, ByVal ModuleName As String) As Integer
  540. Declare Function cModules Lib "time2win.dll" (MODULEENTRY As Any, ByVal firstnext As Integer) As Integer
  541. Declare Function cMorse Lib "time2win.dll" (ByVal morse As String) As String
  542. Declare Function cNexthWnd Lib "time2win.dll" (ByVal hWnd As Integer) As Integer
  543. Declare Function cNumDigit Lib "time2win.dll" (Txt As String) As Integer
  544. Declare Function cOneCharFromLeft Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As String
  545. Declare Function cOneCharFromRight Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As String
  546. Declare Function cPatternMatch Lib "time2win.dll" (ByVal Txt As String, ByVal pattern As String) As Integer
  547. Declare Function cPatternExtMatch Lib "time2win.dll" (ByVal Txt As String, ByVal pattern As String) As Integer
  548. Declare Sub cPutIni Lib "time2win.dll" (ByVal AppName As String, ByVal szItem As String, ByVal szDefault As String, ByVal InitFile As String)
  549. Declare Function cReadBasisTimer Lib "time2win.dll" () As Long
  550. Declare Function cReadCtlLanguage Lib "time2win.dll" (Ctl As Control, ByVal Property As Integer, ByVal FileLanguage As String) As Integer
  551. Declare Function cReadTimer Lib "time2win.dll" (ByVal nTimer As Integer) As Long
  552. Declare Function cRebootSystem Lib "time2win.dll" () As Integer
  553. Declare Function cRemoveBlockChar Lib "time2win.dll" (Txt As String, ByVal Position As Integer, ByVal Length As Integer) As String
  554. Declare Function cRemoveOneChar Lib "time2win.dll" (Txt As String, ByVal Position As Integer) As String
  555. Declare Function cRenameFile Lib "time2win.dll" (ByVal lpFilename1 As String, ByVal lpFilename2 As String) As Integer
  556. Declare Sub cResetCapture Lib "time2win.dll" ()
  557. Declare Sub cResetFocus Lib "time2win.dll" (ByVal hWnd1 As Integer, ByVal hWnd2 As Integer)
  558. Declare Function cResizeString Lib "time2win.dll" (Txt As String, ByVal newLength As Integer) As String
  559. Declare Function cResizeStringAndFill Lib "time2win.dll" (Txt As String, ByVal newLength As Integer, Fill As String) As String
  560. Declare Function cRestartWindows Lib "time2win.dll" () As Integer
  561. Declare Function cReverse Lib "time2win.dll" (Txt As String) As String
  562. Declare Sub cReverseAllBits Lib "time2win.dll" (Txt As String)
  563. Declare Sub cReverseAllBitsByChar Lib "time2win.dll" (Txt As String)
  564. Declare Function cReverseSortD Lib "time2win.dll" (array() As Double) As Integer
  565. Declare Function cReverseSortI Lib "time2win.dll" (array() As Integer) As Integer
  566. Declare Function cReverseSortL Lib "time2win.dll" (array() As Long) As Integer
  567. Declare Function cReverseSortS Lib "time2win.dll" (array() As Single) As Integer
  568. Declare Function cReverseSortStr Lib "time2win.dll" (Txt As String, ByVal nItem As Integer, ByVal ItemLength As Integer) As Integer
  569. Declare Function cRomanToArabic Lib "time2win.dll" (Txt As String) As Variant
  570. Declare Function cSaveCtlLanguage Lib "time2win.dll" (Ctl As Control, ByVal Property As Integer, ByVal FileLanguage As String) As Integer
  571. Declare Function cScrollL Lib "time2win.dll" (Txt As String) As String
  572. Declare Function cScrollR Lib "time2win.dll" (Txt As String) As String
  573. Declare Sub cSetAllBits Lib "time2win.dll" (Txt As String, ByVal Value As Integer)
  574. Declare Sub cSetBit Lib "time2win.dll" (Txt As String, ByVal Position As Integer, ByVal Value As Integer)
  575. Declare Sub cSetBitToFalse Lib "time2win.dll" (Txt As String, ByVal Position As Integer)
  576. Declare Sub cSetBitToTrue Lib "time2win.dll" (Txt As String, ByVal Position As Integer)
  577. Declare Sub cSetCaption Lib "time2win.dll" (ByVal hWnd As Integer, ByVal text As String)
  578. Declare Sub cSetCapture Lib "time2win.dll" (ByVal hWnd As Integer)
  579. Declare Sub cSetCtlCaption Lib "time2win.dll" (Ctl As Control, ByVal text As String)
  580. Declare Sub cSetCtlDataField Lib "time2win.dll" (Ctl As Control, ByVal text As String)
  581. Declare Sub cSetCtlFocus Lib "time2win.dll" (Ctl As Control)
  582. Declare Sub cSetCtlPropString Lib "time2win.dll" (Ctl As Control, ByVal PropIndex As Integer, ByVal text As String)
  583. Declare Sub cSetCtlTag Lib "time2win.dll" (Ctl As Control, ByVal text As String)
  584. Declare Sub cSetCtlText Lib "time2win.dll" (Ctl As Control, ByVal text As String)
  585. Declare Function cSetD Lib "time2win.dll" (array() As Double, ByVal nValue As Double) As Integer
  586. Declare Sub cSetDataField Lib "time2win.dll" (ByVal hWnd As Integer, ByVal text As String)
  587. Declare Sub cSetDefaultSeparator Lib "time2win.dll" (Separator As String)
  588. Declare Sub cSetFocus Lib "time2win.dll" (ByVal hWnd As Integer)
  589. Declare Function cSetHandleCount Lib "time2win.dll" (ByVal nHandle As Integer) As Integer
  590. Declare Function cSetI Lib "time2win.dll" (array() As Integer, ByVal nValue As Integer) As Integer
  591. Declare Function cSetL Lib "time2win.dll" (array() As Long, ByVal nValue As Long) As Integer
  592. Declare Sub cSetLocking Lib "time2win.dll" (ByVal nValue As Integer)
  593. Declare Function cSetS Lib "time2win.dll" (array() As Single, ByVal nValue As Single) As Integer
  594. Declare Sub cSetTag Lib "time2win.dll" (ByVal hWnd As Integer, ByVal text As String)
  595. Declare Sub cSetText Lib "time2win.dll" (ByVal hWnd As Integer, ByVal text As String)
  596. Declare Sub cSetWait Lib "time2win.dll" (ByVal nTimer As Integer, ByVal nValue As Long)
  597. Declare Function cSleep Lib "time2win.dll" (ByVal Delay As Long) As Integer
  598. Declare Function cSortD Lib "time2win.dll" (array() As Double) As Integer
  599. Declare Function cSortI Lib "time2win.dll" (array() As Integer) As Integer
  600. Declare Function cSortL Lib "time2win.dll" (array() As Long) As Integer
  601. Declare Function cSortS Lib "time2win.dll" (array() As Single) As Integer
  602. Declare Function cSortStr Lib "time2win.dll" (Txt As String, ByVal nItem As Integer, ByVal ItemLength As Integer) As Integer
  603. Declare Function cSplitPath Lib "time2win.dll" (ByVal nFilename As String, SPLITPATH As Any) As Integer
  604. Declare Sub cStartBasisTimer Lib "time2win.dll" ()
  605. Declare Sub cStartTimer Lib "time2win.dll" (ByVal nTimer As Integer)
  606. Declare Sub cStartWait Lib "time2win.dll" (ByVal nTimer As Integer)
  607. Declare Sub cStopBasisTimer Lib "time2win.dll" ()
  608. Declare Function cStopTimer Lib "time2win.dll" (ByVal nTimer As Integer) As Long
  609. Declare Function cStringCRC32 Lib "time2win.dll" (Txt As String) As Long
  610. Declare Sub cStringToType Lib "time2win.dll" Alias "cTypesCopy" (ByVal Src As String, TypeDst As Any, ByVal lenTypeSrc As Integer)
  611. Declare Function cSubDirectory Lib "time2win.dll" (ByVal nFilename As String, ByVal firstnext As Integer) As String
  612. Declare Function cSumD Lib "time2win.dll" (array() As Double) As Double
  613. Declare Function cSumI Lib "time2win.dll" (array() As Integer) As Double
  614. Declare Function cSumL Lib "time2win.dll" (array() As Long) As Double
  615. Declare Function cSumS Lib "time2win.dll" (array() As Single) As Double
  616. Declare Sub cSysMenuChange Lib "time2win.dll" (ByVal hWnd As Integer, ByVal Position As Integer, ByVal NewMessage As String)
  617. Declare Sub cSwapD Lib "time2win.dll" (swap1 As Double, swap2 As Double)
  618. Declare Sub cSwapI Lib "time2win.dll" (swap1 As Integer, swap2 As Integer)
  619. Declare Sub cSwapL Lib "time2win.dll" (swap1 As Long, swap2 As Long)
  620. Declare Sub cSwapS Lib "time2win.dll" (swap1 As Single, swap2 As Single)
  621. Declare Sub cSwapStr Lib "time2win.dll" (swap1 As String, swap2 As String)
  622. Declare Function cTaskFind Lib "time2win.dll" (TASKENTRY As Any, ByVal hTask As Integer) As Integer
  623. Declare Function cTasks Lib "time2win.dll" (TASKENTRY As Any, ByVal firstnext As Integer) As Integer
  624. Declare Function cTest Lib "time2win.dll" () As Long
  625. Declare Function cTimeBetween Lib "time2win.dll" (ByVal Hr1 As Integer, ByVal Hr2 As Integer) As Integer
  626. Declare Function cToBinary Lib "time2win.dll" (text As String) As String
  627. Declare Function cToBinary2 Lib "time2win.dll" (text As String, Bin As String) As String
  628. Declare Sub cToggleAllBits Lib "time2win.dll" (Txt As String)
  629. Declare Sub cToggleBit Lib "time2win.dll" (Txt As String, ByVal Position As Integer)
  630. Declare Function cToHexa Lib "time2win.dll" (text As String) As String
  631. Declare Function cTrueBetween Lib "time2win.dll" (Var As Variant, Var1 As Variant, Var2 As Variant) As Integer
  632. Declare Sub cTypeClear Lib "time2win.dll" (TypeSrc As Any, ByVal lenTypeSrc As Integer)
  633. Declare Function cTypeMid Lib "time2win.dll" (TypeSrc As Any, ByVal Offset As Integer, ByVal Length As Integer) As String
  634. Declare Function cTypesCompare Lib "time2win.dll" (Type1 As Any, Type2 As Any, ByVal lenType1 As Integer) As Integer
  635. Declare Sub cTypesCopy Lib "time2win.dll" (TypeSrc As Any, TypeDst As Any, ByVal lenTypeSrc As Integer)
  636. Declare Function cTypeTransfert Lib "time2win.dll" (TypeSrc As Any, ByVal lenTypeSrc As Integer) As String
  637. Declare Sub cTypeToString Lib "time2win.dll" Alias "cTypesCopy" (TypeSrc As Any, ByVal Dst As String, ByVal lenTypeSrc As Integer)
  638. Declare Function cUncompact Lib "time2win.dll" (Txt As String) As String
  639. Declare Function cUniqueFileName Lib "time2win.dll" (Txt As String) As String
  640. Declare Sub cUnloadDLL Lib "time2win.dll" (ByVal hMod As Integer)
  641. Declare Sub cUnlockEventI Lib "time2win.dll" (Ctl As Control)
  642. Declare Sub cPushID Lib "time2win.dll" (IDArray As Integer, ByVal nID As Integer)
  643. Declare Sub cPopID Lib "time2win.dll" (IDArray As Integer, ByVal nID As Integer)
  644. Declare Sub cPopLastID Lib "time2win.dll" (IDArray As Integer)
  645. Declare Function cGetID Lib "time2win.dll" (IDArray As Integer, ByVal nPosition As Integer) As Integer
  646. Declare Sub cClearID Lib "time2win.dll" (IDArray As Integer)
  647.  
  648.